home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #6
/
Amiga Plus CD - 2004 - No. 06.iso
/
AmigaPlus
/
Begleitmaterial
/
50Tools
/
Grafik
/
PerfectPaint
/
rexx
/
Alchemy
/
Script
/
OilPaint.rx
< prev
next >
Wrap
Text File
|
2001-10-23
|
453b
|
34 lines
/* Alchemy script
100
1
4
*/
options results
parse ARG Port x1 y1 x2 y2 type b
ADDRESS value Port
pp_AvoidRefresh
pp_Progresstext 'OilPaint'
pp_UpdateUndoBox x1-1 y1-1 x2+1 y2+1
pp_ComposeReqOff
pp_Compose 0 100 0
pp_EffectOn
do i=0 to 2
pp_Displace type+2
pp_Progress i*2+1 7
pp_BoxF x1 y1 x2 y2
pp_Median type+1
pp_Progress i*2+2 7
pp_BoxF x1 y1 x2 y2
end
pp_EffectOff
pp_ComposeReqOn
pp_PermitRefresh
pp_Progressclr
Exit